0bdd216c3bcf874820616c35d8c970116df43ad0,pdfbox/src/main/java/org/apache/pdfbox/text/TextPosition.java,TextPosition,hashCode,#,849

Before Change


        result = 31 * result + rotation;
        result = 31 * result + (x != +0.0f ? Float.floatToIntBits(x) : 0);
        result = 31 * result + (y != +0.0f ? Float.floatToIntBits(y) : 0);
        result = 31 * result + (pageHeight != +0.0f ? Float.floatToIntBits(pageHeight) : 0);
        result = 31 * result + (pageWidth != +0.0f ? Float.floatToIntBits(pageWidth) : 0);
        result = 31 * result + (widthOfSpace != +0.0f ? Float.floatToIntBits(widthOfSpace) : 0);
        result = 31 * result + Arrays.hashCode(charCodes);

After Change


        result = 31 * result + rotation;
        result = 31 * result + Float.floatToIntBits(x);
        result = 31 * result + Float.floatToIntBits(y);
        result = 31 * result + Float.floatToIntBits(pageHeight);
        result = 31 * result + Float.floatToIntBits(pageWidth);
        result = 31 * result + Float.floatToIntBits(widthOfSpace);
        result = 31 * result + Arrays.hashCode(charCodes);